home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
language
/
gemfsc18.lzh
/
AESSRC18.LZH
/
AESFUNCS
/
FRMPRTF.C
< prev
next >
Wrap
Text File
|
1992-03-27
|
466b
|
23 lines
/**************************************************************************
* FRMPRTF.C - frm_printf() function.
*************************************************************************/
#include <stdarg.h>
#include "gemfast.h"
int frm_printf(options, buttons, fmt)
long options;
char *buttons;
char *fmt;
{
va_list args;
int rv;
va_start(args, fmt);
rv = frm_vprintf(options, buttons, fmt, args);
va_end(args);
return rv;
}
ə